home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGSCAL / ANIMATE.LZH / SHOWMOVI.DOC < prev    next >
Text File  |  1984-10-15  |  2KB  |  48 lines

  1.  
  2.                             SHOW A MOVIE version 1.0
  3.                          (c) 1984 by Neil J. Rubenking
  4.  
  5.      SHOWMOVI.COM is a stripped-down version of MAKAMOVI.  You call it from
  6. DOS with a parameter string as described below, and it SHOWs a MOVIe file that
  7. you created with MAKAMOVI.
  8.  
  9.  
  10. SYNTAX:
  11.  
  12. SHOWMOVI MOVINAME/[o,c, or r]/[wait]/[repetitions]/
  13.  
  14. MOVINAME is the name of the screen file selected.  It may include a drive
  15.      letter, but must not include the extension, which is automatically set
  16.      to ".SCN".  This item is REQUIRED -- there is no default.
  17.  
  18. [o,c, or r]  Set the mode of display, where ...
  19.      O : One time display -- last screen remains until a key is pressed.
  20.      C : Continuous display until a key is pressed.
  21.      R : Repetitive display -- repeats the cycle a set number of times,
  22.          then holds the last screen 'till a key is pressed.
  23.      Default is r.
  24.  
  25. [wait]  This is the time between screens.  It is an integer value.  The range
  26.      10 to 100 is probably what you'll want.  Default is 50.
  27.  
  28. [repetitions]  An integer value that tells an R display how many times to
  29.      repeat.  Default is 5.
  30.  
  31. The parameters MUST be passed in this order, with slashes between AND a slash
  32.      after the last parameter.  Only MOVINAME is required.
  33.  
  34.  
  35. EXAMPLES:
  36.  
  37. SHOWMOVI bouncy/o/20/     Shows "bouncy" once, with 20 units between screens
  38. SHOWMOVI square/r/100/10  Shows "square" ten times, with 100 units between
  39. SHOWMOVI bouncy/c/        Shows "bouncy" continuously, with the default value
  40.                           of 50 units between
  41. SHOWMOVI square/o         CRASHES, because of missing final slash
  42. SHOWMOVI bouncy/50/       CRASHES -- you don't have to give all the parameters,
  43.                           but you must give a complete list up to the point
  44.                           you stop (SHOWMOVI bouncy/o/50/ would be right)
  45. SHOWMOVI bouncy/          Uses all default values, so it shows "bouncy" 5
  46.                           times with 50 between
  47.  
  48.